github.com/klauspost/compress/zstd.encoderState.current (field)

14 uses

	github.com/klauspost/compress/zstd (current package)
		encoder.go#L46: 	current          []byte
		encoder.go#L104: 		if cap(s.current) == 0 {
		encoder.go#L105: 			s.current = make([]byte, 0, e.o.blockSize)
		encoder.go#L110: 		s.current = s.current[:0]
		encoder.go#L232: 			s.current = e.encodeAll(s.encoder, s.filling, s.current[:0])
		encoder.go#L234: 			n2, s.err = s.w.Write(s.current)
		encoder.go#L240: 			s.current = s.current[:0]
		encoder.go#L315: 	s.filling, s.current, s.previous = s.previous[:0], s.filling, s.current
		encoder.go#L316: 	s.nInput += int64(len(s.current))
		encoder.go#L363: 	}(s.current)